{gridName}_full_date

specifies the format of dates in columns with id='date'

startDatethe date when an event is scheduled to begin
endDatethe date when an event is scheduled to be completed
evobjectthe event object

Available only in PRO Edition

Example

scheduler.templates.grid_full_date = function(start,end,event){
    if (scheduler.isOneDayEvent(event))
        return scheduler.templates.grid_single_date(start);
    else
        return scheduler.templates.day_date(start)+" – "
        +scheduler.templates.day_date(end);
};

Applicable views:Grid View
Details

The template requires the grid_view plugin to be activated.

See also
Back to top